/***/ "./Templates/MessageBox.html":

/*!***********************************!*\

  !*** ./Templates/MessageBox.html ***!

  \***********************************/

/***/ (() => {

 

WebApp.templateCatalog["MessageBox"] = t => { t

   .beginChild("div").class(m => m.className)

      .beginChild("h5").set("class","title").text(m => m.title).endChild()

      .beginChild("div").set("class","body")

         .if(m => m.icon != null, t3 => t3

            .template("Icon", m => m.icon)

         )

         .beginChild("div").set("class","text").text(m => m.message).endChild()

      .endChild()

      .beginChild("div").set("class","actions")

         .foreach(m => m.actions, t3 => t3

            .content(m => m)

         )

      .endChild()

   .endChild()

}

 

/***/ }),